home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2005 October / Gamestar_77_2005-10_dvd.iso / Programy / powarc920cz.exe / {app} / POWERARC.EXE / 0 / RCDATA / TEFORM / TEFORM.txt
Text File  |  2005-03-06  |  3KB  |  138 lines

  1. object EForm: TEForm
  2.   Left = 300
  3.   Top = 361
  4.   BorderStyle = bsDialog
  5.   Caption = 'Encrypt '
  6.   ClientHeight = 189
  7.   ClientWidth = 409
  8.   Color = clBtnFace
  9.   ParentFont = True
  10.   KeyPreview = True
  11.   OldCreateOrder = False
  12.   Scaled = False
  13.   OnCreate = FormCreate
  14.   OnKeyPress = FormKeyPress
  15.   OnShow = FormShow
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object Label1: TLabel
  19.     Left = 8
  20.     Top = 8
  21.     Width = 56
  22.     Height = 13
  23.     Caption = '&Source File:'
  24.     FocusControl = Edit1
  25.   end
  26.   object Label2: TLabel
  27.     Left = 8
  28.     Top = 56
  29.     Width = 77
  30.     Height = 13
  31.     Caption = '&Destination File:'
  32.     FocusControl = Edit2
  33.   end
  34.   object BitBtn7: TSpeedButton
  35.     Left = 296
  36.     Top = 24
  37.     Width = 25
  38.     Height = 21
  39.     OnClick = Button1Click
  40.   end
  41.   object BitBtn1: TSpeedButton
  42.     Left = 296
  43.     Top = 72
  44.     Width = 25
  45.     Height = 21
  46.     OnClick = Button2Click
  47.   end
  48.   object Edit1: TEdit
  49.     Left = 8
  50.     Top = 24
  51.     Width = 281
  52.     Height = 21
  53.     ReadOnly = True
  54.     TabOrder = 0
  55.     Text = 'c:\test\test.lzh'
  56.   end
  57.   object Edit2: TEdit
  58.     Left = 8
  59.     Top = 72
  60.     Width = 281
  61.     Height = 21
  62.     ReadOnly = True
  63.     TabOrder = 1
  64.     Text = 'c:\test\enc\test.enc'
  65.   end
  66.   object Button3: TButton
  67.     Left = 328
  68.     Top = 8
  69.     Width = 75
  70.     Height = 25
  71.     Caption = '&Encrypt'
  72.     Default = True
  73.     TabOrder = 4
  74.     OnClick = Button3Click
  75.   end
  76.   object Button4: TButton
  77.     Left = 328
  78.     Top = 40
  79.     Width = 75
  80.     Height = 25
  81.     Caption = '&Cancel'
  82.     TabOrder = 5
  83.     OnClick = Button4Click
  84.   end
  85.   object Button5: TButton
  86.     Left = 328
  87.     Top = 72
  88.     Width = 75
  89.     Height = 25
  90.     Caption = '&Help'
  91.     TabOrder = 6
  92.     OnClick = Button5Click
  93.   end
  94.   object CheckBox1: TCheckBox
  95.     Left = 8
  96.     Top = 168
  97.     Width = 281
  98.     Height = 17
  99.     Caption = 'De&lete orginal file after encryption'
  100.     TabOrder = 2
  101.   end
  102.   object GroupBox2: TGroupBox
  103.     Left = 8
  104.     Top = 104
  105.     Width = 281
  106.     Height = 57
  107.     Caption = ' &Method '
  108.     TabOrder = 3
  109.     object ComboBox1: TComboBox
  110.       Left = 8
  111.       Top = 20
  112.       Width = 265
  113.       Height = 21
  114.       Style = csDropDownList
  115.       ItemHeight = 13
  116.       TabOrder = 0
  117.       Items.Strings = (
  118.         'Blowfish (128-bit)'
  119.         'DES (64-bit)'
  120.         'Triple DES (128-bit)'
  121.         'Rijndael - AES (128-bit)')
  122.     end
  123.   end
  124.   object ProgressBar1: TProgressBar
  125.     Left = 8
  126.     Top = 192
  127.     Width = 393
  128.     Height = 17
  129.     TabOrder = 7
  130.   end
  131.   object AgOpenDialog: TOpenDialog
  132.     Filter = 'All files|*.*'
  133.     Title = 'Browse'
  134.     Left = 328
  135.     Top = 112
  136.   end
  137. end
  138.